From 6dd4589932cd786429956b9ae0224ef121eddbf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20DESBRI=C3=88RES?= Date: Mon, 23 Jun 2014 09:57:34 +0200 Subject: sl Steam Locomotive runs accros your terminal when you type 'sl' as you meant to type 'ls' --- pcr/sl/PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pcr/sl/PKGBUILD diff --git a/pcr/sl/PKGBUILD b/pcr/sl/PKGBUILD new file mode 100644 index 000000000..26e1345c5 --- /dev/null +++ b/pcr/sl/PKGBUILD @@ -0,0 +1,32 @@ +# Contributor (Arch) : Jakub Luzny +# Contributor (Arch) : SanskritFritz (gmail) +# Maintainer (Parabola) : Aurélien DESBRIÈRES + +pkgname=sl +pkgver=5.01 +pkgrel=1 +pkgdesc='Steam Locomotive runs across your terminal when you type "sl" as you meant to type "ls"' +arch=('i686' 'x86_64' 'arm') +url="http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html" +license=('free') +depends=('ncurses') +makedepends=('git') +source=("git://github.com/mtoyoda/sl.git") +md5sums=('SKIP') + +build() { + cd "$srcdir/sl" + + cc $CFLAGS -o sl sl.c -lcurses + gzip -9 -f sl.1 +} + +package() { + cd "${srcdir}/sl" + + install -Dm 775 sl "$pkgdir/usr/bin/sl" + install -Dm 644 sl.1.gz "$pkgdir/usr/share/man/man1/sl.1.gz" +} + +#category: games +# vim:set ts=2 sw=2 et: -- cgit v1.2.3-2-g168b