blob: c54d8649d003ca75635e64ebf164135805ea02d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Collection de fichiers graphiques pouvant etre utilises comme fonds d'ecrans
# URL: http://www.gnome.org/
# Maintainer: NuTyX GNOME team
# Packager: b at juglas dot name
# Depends on: p5-xml-parser, intltool
# Run on:
name=gnome-backgrounds
version=3.3.3
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz \
nutyx-attapu.jpg)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
mkdir -p $PKG/usr/share/pixmaps/backgrounds/nutyx
cp ../nutyx-attapu.jpg \
$PKG/usr/share/pixmaps/backgrounds/nutyx/attapu.jpg
}
|