summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 651ff0c9c5ff554fe13616a1e46ad26b9c4d57e7 (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
# Maintainer: Ian Hernandez <ihernandezs@openmailbox.org>

pkgname=simple-text
pkgver=0.10.0
pkgrel=1
pkgdesc="A not so simple text and code editor written in Vala (Still in development)"
arch=('i686' 'x86_64')
license=('GPL2')
url="https://github.com/badwolfie/$pkgname"
depends=('gtk3' 'gtksourceview3' 'libgee' 'vte3' 'dconf')
makedepends=('vala' 'git' 'intltool')
options=('!emptydirs')
source=("$pkgname-$pkgver::git+$url.git")
md5sums=('SKIP')
install=$pkgname.install

build() {
    cd $pkgname-$pkgver
    ./autogen.sh
    ./configure --disable-schemas-compile --prefix=/usr
    make
}

package() {
    cd $pkgname-$pkgver
    make DESTDIR="$pkgdir" install
}