blob: 880c2d653d43f4fcfc609542d9fad0c055381241 (
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
|
# Maintainer: Gerald Nunn <gerald dot b dot nunn at gmail dot com>
pkgname=terminix-git
_pkgname=terminix
pkgver=0.40.0.r45.99719b8
pkgrel=2
pkgdesc="A tiling terminal emulator based on GTK+ 3 (git master)"
arch=('x86_64')
url="http://github.com/gnunn1/terminix"
license=('MPL')
depends=('gtk3' 'dconf' 'gsettings-desktop-schemas' 'vte3')
makedepends=('git' 'dmd' 'dub')
provides=('terminix')
conflicts=('terminix')
install=$pkgname.install
source=('git+https://github.com/gnunn1/terminix')
md5sums=('SKIP')
pkgver() {
cd "$_pkgname"
git describe --long --tags | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'
}
build() {
cd "$_pkgname"
dub build --build=release
cd data/resources
glib-compile-resources terminix.gresource.xml
}
package() {
cd "$_pkgname"
./install.sh $pkgdir/usr
rm $pkgdir/usr/share/glib-2.0/schemas/gschemas.compiled
}
|