contrib/libfm/Pkgfile

36 lines
876 B
Plaintext
Raw Normal View History

2010-06-23 12:42:17 +02:00
# Description: gtk library for writing file managers
# URL: http://pcmanfm.sourceforge.net/
# Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
2011-07-10 13:23:32 +02:00
# Depends on: gtk menu-cache
2010-06-23 12:42:17 +02:00
name=libfm
2010-11-12 13:03:10 +01:00
version=0.1.14
2011-07-11 17:28:48 +02:00
release=2
2010-11-12 13:03:10 +01:00
source=(
http://crux.org.pl/distfiles/$name-$version.tar.gz
2011-07-10 13:23:32 +02:00
libfm-0.1.14_crux_glib_ge_2_27.patch
2010-11-12 13:03:10 +01:00
)
2010-06-23 12:42:17 +02:00
build() {
cd $name-$version
2011-07-10 13:23:32 +02:00
patch -p1 -i ../libfm-0.1.14_crux_glib_ge_2_27.patch
rm -rf po/* docs/*
aclocal
autoheader --force
libtoolize -c --automake --force
automake --add-missing --copy --include-deps
autoconf
rm -rf autom4te.cache
2010-06-23 12:42:17 +02:00
./configure \
--prefix=/usr \
--disable-nls \
--disable-static \
2010-11-12 13:03:10 +01:00
--sysconfdir=/etc \
--disable-gtk-doc-html
2010-06-23 12:42:17 +02:00
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/locale
2010-11-12 13:03:10 +01:00
rm -rf $PKG/usr/share/gtk-doc
2010-06-23 12:42:17 +02:00
}
2010-11-12 13:03:10 +01:00