initial import
This commit is contained in:
25
sl/PKGBUILD
Normal file
25
sl/PKGBUILD
Normal file
@@ -0,0 +1,25 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=sl
|
||||
pkgver=5.02
|
||||
pkgrel=1
|
||||
pkgdesc='Steam Locomotive runs across your terminal when you type "sl" as you meant to type "ls".'
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html'
|
||||
license=('Expat')
|
||||
depends=('ncurses')
|
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/mtoyoda/sl/archive/$pkgver.tar.gz")
|
||||
sha512sums=('a4d18bc79d7e0eca7748b10226a6b2a85a7a01d636e4e9215bf524a7849bc5cb250034326e5a69f7423d79e40b92182fddc0e56e25df616edae06369c782cb26')
|
||||
|
||||
build() {
|
||||
cd "${pkgname}-${pkgver}"
|
||||
cc $CFLAGS -o sl sl.c -lcurses
|
||||
gzip -9 -f sl.1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${pkgname}-${pkgver}"
|
||||
install -Dm 775 sl "${pkgdir}/usr/bin/sl"
|
||||
install -Dm 644 sl.1.gz "${pkgdir}/usr/share/man/man1/sl.1.gz"
|
||||
install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
||||
}
|
||||
Reference in New Issue
Block a user