mirror of
https://github.com/mac-a-r0ni/lxqt.git
synced 2025-01-15 11:12:20 +01:00
33 lines
517 B
Plaintext
33 lines
517 B
Plaintext
# Description: Library for file management extra data
|
|
# URL: https://lxde.org
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
|
# Depends on: glib
|
|
|
|
name=libfm-extra
|
|
version=1.3.2
|
|
release=1
|
|
|
|
source=(https://github.com/lxde/libfm/archive/${version}/libfm-$version.tar.gz)
|
|
|
|
build()
|
|
|
|
{
|
|
|
|
cd libfm-$version
|
|
|
|
autoreconf -fi
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-extra-only \
|
|
--with-gtk=no \
|
|
--disable-static
|
|
|
|
make
|
|
|
|
make DESTDIR="$PKG" install
|
|
|
|
rm -rf $PKG/usr/lib/*.la
|
|
rm $PKG/usr/include/libfm
|
|
|
|
}
|