summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO16
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD17
-rw-r--r--tulizu.install3
4 files changed, 40 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..8a8ea129a8fb
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Sat Feb 6 13:35:06 UTC 2016
+pkgbase = tulizu
+ pkgdesc = View and customize ASCII art included /etc/issue files
+ pkgver = 0.1
+ pkgrel = 1
+ url = https://github.com/loh-tar/tulizu
+ install = tulizu.install
+ arch = any
+ license = GPL
+ depends = bash
+ source = tulizu-0.1.tar.gz::https://github.com/loh-tar/tulizu/archive/v0.1.tar.gz
+ md5sums = 1f01bff06e26994baf545b9986e01c58
+
+pkgname = tulizu
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..6ae0b18a1f6c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/pkg
+/src
+*.tar.gz
+*.tar.xz
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..677111ebf9fb
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: loh.tar <loh.tar at googlemail dot com>
+pkgname='tulizu'
+pkgver='0.1'
+pkgrel='1'
+pkgdesc='View and customize ASCII art included /etc/issue files'
+arch=('any')
+url="https://github.com/loh-tar/$pkgname"
+license=('GPL')
+depends=('bash')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/loh-tar/$pkgname/archive/v$pkgver.tar.gz")
+md5sums=('1f01bff06e26994baf545b9986e01c58')
+
+package() {
+ cd "$pkgname-$pkgver"
+ make install DESTDIR="$pkgdir"
+}
diff --git a/tulizu.install b/tulizu.install
new file mode 100644
index 000000000000..e66a38bb7b78
--- /dev/null
+++ b/tulizu.install
@@ -0,0 +1,3 @@
+post_install() {
+ echo "TIP! Run 'tulizu doc man' to become familiar"
+}