blob: 0e85b69e66ddcc80545fe08cf454d9cd2199d300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $Id: PKGBUILD 198017 2013-10-30 12:17:45Z allan $
# Maintainer: Jan de Groot <jan@archlinux.org>
pkgname=gnome-menus
pkgver=3.10.1
pkgrel=1
pkgdesc="GNOME menu specifications"
arch=('i686' 'x86_64')
depends=('glib2')
makedepends=('intltool' 'gobject-introspection')
license=('GPL' 'LGPL')
url="http://www.gnome.org"
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
sha256sums=('46950aba274c1ad58234374fa9b235258650737307f3bc396af48eb983668a71')
build() {
cd "$pkgname-$pkgver"
./configure \
--prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static
make
}
package(){
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|