New package: skroll-0.6

Closes #2779
This commit is contained in:
Jürgen Buchmüller 2015-10-25 23:59:43 +01:00
parent 96bcd762b5
commit 125e2b96af
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,15 @@
Enable configurable CC and LD.
--- Makefile 2015-03-16 11:50:36.000000000 +0100
+++ Makefile 2015-10-25 23:55:25.205767890 +0100
@@ -1,8 +1,8 @@
PREFIX:=/usr
MANPREFIX:=${PREFIX}/share/man
-CC = cc
-LD= ${CC}
+CC ?= cc
+LD ?= ${CC}
RM = rm
GZ = gzip
CFLAGS = -Wall -pedantic

16
srcpkgs/skroll/template Normal file
View file

@ -0,0 +1,16 @@
# Template file for 'skroll'
pkgname=skroll
version=0.6
revision=1
build_style=gnu-makefile
make_build_args="LD=\${CXX}"
short_desc="Scroll text to stdout"
maintainer="Diogo Leal <diogo@diogoleal.com>"
license="WTFPL"
homepage="http://git.z3bra.org/cgit.cgi/skroll/"
distfiles="http://repo.voidlinux.de/distfiles/skroll-${version}/skroll-${version}.tar.bz2"
checksum=32221fef51f6814a7bf3cf4207b8a2466624544a2fd1e5b110ee2af3580d2959
post_install() {
vlicense LICENSE
}