summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Di Luigi2015-09-21 23:06:13 +0200
committerWilliam Di Luigi2015-09-21 23:09:18 +0200
commit25dccfea1ce728964d65bbc56dc6101732ae6414 (patch)
treec5476c86a6fb4db9ed45cd826ef53f00165e3414
downloadaur-25dccfea1ce728964d65bbc56dc6101732ae6414.tar.gz
First commit
-rw-r--r--.SRCINFO18
-rw-r--r--PKGBUILD32
2 files changed, 50 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..575c50db6e6d
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,18 @@
+# Generated by makepkg 4.2.1
+# Mon Sep 21 21:03:39 UTC 2015
+pkgbase = tilde
+ pkgdesc = An intuitive text editor for the terminal.
+ pkgver = 0.3.4
+ pkgrel = 1
+ url = http://os.ghalkes.nl/tilde.html
+ arch = x86_64
+ arch = i686
+ license = GPL3
+ depends = libt3widget>=0.2.0
+ depends = libt3highlight>=0.2.1
+ options = !libtool
+ source = http://os.ghalkes.nl/dist/tilde-0.3.4.tar.bz2
+ md5sums = 27d47aab32d643e8880397ec6fdb54b4
+
+pkgname = tilde
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..5b48b00b059f
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,32 @@
+# Maintainer: Gertjan Halkes <arch at ghalkes dot nl>
+pkgname=tilde
+pkgver=0.3.4
+pkgrel=1
+pkgdesc="An intuitive text editor for the terminal."
+arch=('x86_64' 'i686')
+url="http://os.ghalkes.nl/$pkgname.html"
+license=('GPL3')
+groups=()
+depends=('libt3widget>=0.2.0' 'libt3highlight>=0.2.1')
+makedepends=()
+optdepends=()
+conflicts=()
+replaces=()
+backup=()
+options=('!libtool')
+install=''
+changelog=
+source=("http://os.ghalkes.nl/dist/$pkgname-$pkgver.tar.bz2")
+noextract=()
+md5sums=('27d47aab32d643e8880397ec6fdb54b4')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}