blob: 752ae6fd024ddb9dd5be43d37d5c2eac9d0d3082 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Librairie pour gnome-panel
# URL: http://www.gnome.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gnome-vfs
name=libgweather
version=2.24.3
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/2.24/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=$(pkg-config --variable=prefix ORBit-2.0) \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--disable-static
make
make DESTDIR=$PKG install
}
|