xfce4/exo/Pkgfile

30 lines
548 B
Plaintext
Raw Normal View History

2019-04-30 02:46:22 +02:00
# Description: Application library for the Xfce desktop environment
# URL: https://www.xfce.org
# Maintainer: jolupa <jolupameister(at)gmail[dot](com)
2019-04-24 17:15:26 +02:00
# Depends on: libxfce4util gtk3 p5-uri libxfce4ui
name=exo
2019-05-05 02:23:35 +02:00
version=0.12.5
2019-05-10 01:34:20 +02:00
release=2
2019-04-30 02:46:22 +02:00
source=()
2019-04-24 17:15:26 +02:00
build() {
2019-04-30 02:46:22 +02:00
if cd "$name-$version" 2> /dev/null; then
git pull
else
git clone https://git.xfce.org/xfce/$name/ "$name-$version"
fi
2019-05-05 02:23:35 +02:00
cd "$name-$version"
2019-04-30 02:46:22 +02:00
./autogen.sh \
--prefix=/usr \
2019-05-05 02:23:35 +02:00
--libexecdir=/usr/lib/$name \
2019-04-30 02:46:22 +02:00
--disable-gtk-docs \
--disable-gtk-2
2019-05-09 20:36:01 +02:00
2019-04-30 02:46:22 +02:00
make
2019-04-24 17:15:26 +02:00
2019-04-30 02:46:22 +02:00
make DESTDIR=$PKG install
2019-05-09 20:36:01 +02:00
2019-04-24 17:15:26 +02:00
}