contrib/libfm/Pkgfile

29 lines
658 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
# Depends on: intltool gtk menu-cache
name=libfm
2010-11-12 13:03:10 +01:00
version=0.1.14
2010-06-23 12:42:17 +02:00
release=1
2010-11-12 13:03:10 +01:00
source=(
http://crux.org.pl/distfiles/$name-$version.tar.gz
libfm_la.patch
)
2010-06-23 12:42:17 +02:00
build() {
cd $name-$version
2010-11-12 13:03:10 +01:00
patch -p1 -i ../libfm_la.patch
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