blob: 225942f95bdb9f358e402fd284951b6ef949fa6e (
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
28
29
30
31
32
|
# Maintainer: Brian Bidulock <bidulock@openss7.org>
pkgname=xde-ctools-git
pkgver=1.1.0.g12bd9b1
pkgrel=1
pkgdesc="X Desktop Environment C-language tools"
arch=('i686' 'x86_64')
url="https://github.com/bbidulock/xde-ctools"
license=('GPL')
provides=('xde-ctools')
conflicts=('xde-ctools')
depends=('libsm' 'libwnck+' 'gtk2')
makedepends=('git')
source=("$pkgname::git+https://github.com/bbidulock/xde-ctools.git")
md5sums=('SKIP')
pkgver() {
cd $pkgname
git describe --long --tags|sed -e 's,^[a-zA-Z_]*,,;s,-,.,g'
}
build() {
cd $pkgname
./autogen.sh
./configure --prefix=/usr --sysconfdir=/etc
make V=0
}
package() {
cd $pkgname
make DESTDIR="$pkgdir" install
}
|