Jay Lanagan e1cbd0c252 Create Pkgfile
adding this to see what/why I might need it
2023-07-10 01:10:11 -04:00

28 lines
542 B
Plaintext

# Description: Xfce's developer tools
# URL: https://www.xfce.org
# Maintainer: mac-a-r0ni, j at lngn dot net
# Depends on: glib intltool gtk-doc
name=xfce4-dev-tools
version=4.18.0
release=1
source=(http://archive.xfce.org/src/xfce/$name/${version:0:4}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--libdir=/usr/lib \
--libexecdir=/usr/lib/$name \
--disable-gtk-doc \
--disable-nls
make
make DESTDIR=$PKG install
}