mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
28 lines
537 B
Plaintext
28 lines
537 B
Plaintext
# Description: Xfce's developer tools
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: gtk-doc intltool
|
|
|
|
name=xfce4-dev-tools
|
|
version=4.20.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
|
|
|
|
}
|