blob: 65203d1d9019661c9cc66e3dc2adc2629891ffcd (
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
33
34
35
36
37
38
39
40
41
|
# Maintainer: Davi da Silva Böger <dsboger at gmail dot com>
pkgname=terminix-git
_pkgname=terminix
pkgver=1.0.0.r122.1ee8c56
pkgrel=1
pkgdesc="A tiling terminal emulator based on GTK+ 3 (git master)"
arch=('x86_64')
url="http://github.com/gnunn1/terminix"
license=('MPL')
depends=('gtkd>=3.3.0' 'vte3' 'dconf' 'gsettings-desktop-schemas')
optdepends=('python2-nautilus: for "Open Terminix Here" support in nautilus'\
'vte3-notification: for desktop notifications support')
makedepends=('git' 'ldc')
provides=('terminix')
conflicts=('terminix')
source=('git+https://github.com/gnunn1/terminix')
sha512sums=('SKIP')
pkgver() {
cd ${_pkgname}
git describe --long --tags | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'
}
prepare() {
cd ${_pkgname}
chmod u+x autogen.sh
./autogen.sh
}
build() {
cd ${_pkgname}
./configure --prefix=/usr
make DC='ldmd' DCFLAGS='-disable-linker-strip-dead -O -inline -release -version=StdLoggerDisableTrace'
}
package() {
cd ${_pkgname}
make DESTDIR=${pkgdir} install
}
|