contrib/libfm/Pkgfile

41 lines
905 B
Plaintext
Raw Normal View History

2016-07-30 06:22:20 +02:00
# Description: Library for file management.
2020-06-01 17:45:48 +02:00
# URL: https://wiki.lxde.org/en/PCManFM
2016-07-30 06:22:20 +02:00
# Maintainer: Danny Rawlins, crux at romster dot me
2017-11-01 13:35:12 +01:00
# Depends on: gtk menu-cache xorg-libxdamage
2016-07-30 06:22:20 +02:00
name=libfm
2020-01-01 07:46:25 +01:00
version=1.3.1
2020-01-05 08:34:19 +01:00
release=2
2020-01-01 07:46:25 +01:00
source=(https://downloads.sourceforge.net/pcmanfm/$name-$version.tar.xz)
2016-07-30 06:22:20 +02:00
build() {
cd $name-$version
2020-01-05 08:34:19 +01:00
# https://github.com/lxde/libfm/issues/35
sed -i 's/create=xarchiver --add-to %F/create=xarchiver --compress %F/' data/archivers.list
autoreconf -fi
2016-07-30 06:22:20 +02:00
./configure \
--prefix=/usr \
--sysconfdir=/etc \
2020-01-05 08:34:19 +01:00
--with-gnu-ld \
--disable-nls \
2016-07-30 06:22:20 +02:00
--disable-gtk-doc-html
# 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
rm -r $PKG/usr/share/locale
if [[ -h $PKG/usr/include/libfm/libfm-1.0 ]]; then
rm -r $PKG/usr/include/libfm
cd $PKG/usr/include/
ln -s libfm-1.0 libfm
fi
}