25 lines
669 B
Plaintext
25 lines
669 B
Plaintext
# Description: MATE için bir resim gösterici
|
|
# URL: http://www.mate-desktop.org/
|
|
# Packager: yasarciv67@gmail.com
|
|
# Depends on: gobject-introspection intltool itstool dbus-glib exempi lcms2 libexif libjpeg-turbo mate-desktop libpeas librsvg
|
|
|
|
name=eom
|
|
version=1.18.2
|
|
release=1
|
|
source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--localstatedir=/var \
|
|
--with-librsvg \
|
|
--disable-python
|
|
|
|
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|