blob: dc29c4ae82a4343e98927d8d3ac664e9607c330d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Fonds d'écrans pour xfce
# URL: http://www.xfce.org/
# Maintainer: NuTyX core team
# Packager: fred.galusik at gmail dot com
# Depends on:
name=xfce4-artwork
version=0.1
release=5
source=(http://download.berlios.de/xfce-goodies/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/xfce4 \
--localstatedir=/var \
--disable-static
make
make DESTDIR=$PKG install
}
|