forked from ports/contrib
16 lines
398 B
Plaintext
16 lines
398 B
Plaintext
# Description: Tool for updating versions of the Linux kernel source
|
|
# URL: http://www.selenic.com/ketchup/wiki/
|
|
# Maintainer: Mark Rosenstand, mark at borkware dot net
|
|
# Depends on: python
|
|
|
|
name=ketchup
|
|
version=0.9.8
|
|
release=1
|
|
source=(http://www.selenic.com/ketchup/ketchup-$version.tar.bz2)
|
|
|
|
build() {
|
|
mkdir -p $PKG/usr/{bin,man/man1}
|
|
cp ketchup $PKG/usr/bin
|
|
cp ketchup.1 $PKG/usr/man/man1
|
|
}
|