blob: 87f7a09b94cb7a9ba77f6570c09e3a0b625ccdef (
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 117940 2011-04-04 22:13:19Z ibiru $
# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
pkgname=libunique3
pkgver=3.0.0
pkgrel=1
pkgdesc="Library for writing single instance applications for GTK3"
arch=('i686' 'x86_64')
license=('LGPL')
depends=('gtk3')
makedepends=('gtk-doc' 'gobject-introspection')
options=('!libtool')
url="http://live.gnome.org/LibUnique"
source=(http://ftp.gnome.org/pub/gnome/sources/libunique/${pkgver%.*}/libunique-${pkgver}.tar.bz2)
sha256sums=('e945ff3d3bb7d4085ed73b5418f2935097bb0afc07287739c8f0d6fc049202e1')
build() {
cd "${srcdir}/libunique-${pkgver}"
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static \
--disable-dbus
make
}
package() {
cd "${srcdir}/libunique-${pkgver}"
make DESTDIR="${pkgdir}" install
}
|