18 lines
397 B
Plaintext
18 lines
397 B
Plaintext
# Description: Common development macros for GNOME
|
|
# URL: https://git.gnome.org/browse/gnome-common
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=gnome-common
|
|
version=3.18.0
|
|
release=1
|
|
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./autogen.sh
|
|
./configure \
|
|
--prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|