blob: 6e0fe8a0dc63a8bab9f1da6f72ed7619001d31f4 (
plain)
1 # Description: Tool for updating versions of the Linux kernel source.
2 # URL: http://www.selenic.com/ketchup/wiki/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: Mark Rosenstand, mark at borkware dot net
5 # Depends on: python gnupg
6
7 name=ketchup
8 version=0.9.8
9 release=1
10 source=(http://www.selenic.com/ketchup/ketchup-$version.tar.bz2)
11
12 build() {
13 install -D -m755 ketchup $PKG/usr/bin/ketchup
14 install -D -m644 ketchup.1 $PKG/usr/man/man1/ketchup.1
15 }
|