18 lines
551 B
Plaintext
18 lines
551 B
Plaintext
# Description: Tool for updating or switching between versions of the Linux kernel source
|
|
# URL: http://www.selenic.com/ketchup/wiki/
|
|
# Maintainer: Jukka Heino, jukka at karsikkopuu dot net
|
|
# Packager: Jukka Heino, jukka at karsikkopuu dot net
|
|
# Depends on: python
|
|
|
|
name=ketchup
|
|
version=0.9.6
|
|
release=2
|
|
source=(http://www.selenic.com/$name/$name-$version.tar.bz2 \
|
|
ketchup-list.patch)
|
|
|
|
build() {
|
|
patch -p1 < $SRC/ketchup-list.patch
|
|
install -D -m 0755 $name $PKG/usr/bin/$name
|
|
install -D -m 0644 $name.1 $PKG/usr/man/man1/$name.1
|
|
}
|