30 lines
605 B
Text
30 lines
605 B
Text
# Template file for 'sic-git'
|
|
pkgname=sic-git
|
|
version=20130828
|
|
revision=1
|
|
short_desc="Simple irc client"
|
|
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
|
license="MIT"
|
|
homepage="http://tools.suckless.org/sic"
|
|
|
|
do_fetch() {
|
|
local url="git://git.suckless.org/sic"
|
|
msg_normal "Fetching source from $url ...\n"
|
|
git clone ${url} ${pkgname}-${version}
|
|
}
|
|
|
|
do_build() {
|
|
make CC=$CC INCS="-I." LIBS= ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
make PREFIX=/usr DESTDIR=$DESTDIR install
|
|
vinstall LICENSE 644 usr/share/licenses/sic
|
|
vinstall README 644 usr/share/doc/sic
|
|
}
|
|
|
|
sic-git_package() {
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|