diff options
author | Johannes Winkelmann <jw@smts.ch> | 2006-02-23 15:26:10 +0000 |
---|---|---|
committer | Johannes Winkelmann <jw@smts.ch> | 2006-02-23 15:26:10 +0000 |
commit | bdea7e6c6a535e57a07d376a3139d0788efaaa41 (patch) | |
tree | 1a7334c99fa39b1ad1a7a35c113b18cb0d92413c /service | |
download | opt-bdea7e6c6a535e57a07d376a3139d0788efaaa41.tar.gz opt-bdea7e6c6a535e57a07d376a3139d0788efaaa41.tar.xz |
create branch for 2.2
Diffstat (limited to 'service')
-rw-r--r-- | service/.footprint | 6 | ||||
-rw-r--r-- | service/.md5sum | 1 | ||||
-rw-r--r-- | service/Pkgfile | 19 |
3 files changed, 26 insertions, 0 deletions
diff --git a/service/.footprint b/service/.footprint new file mode 100644 index 000000000..7332330d6 --- /dev/null +++ b/service/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/bash-completion/ +-rwxr-xr-x root/root usr/lib/bash-completion/service_completions +drwxr-xr-x root/root usr/sbin/ +-rwxr-xr-x root/root usr/sbin/service diff --git a/service/.md5sum b/service/.md5sum new file mode 100644 index 000000000..888a37ec8 --- /dev/null +++ b/service/.md5sum @@ -0,0 +1 @@ +9c163d7eb12b9f89d6729f9434cf7f9e service-0.2.tar.gz diff --git a/service/Pkgfile b/service/Pkgfile new file mode 100644 index 000000000..dbbc958bc --- /dev/null +++ b/service/Pkgfile @@ -0,0 +1,19 @@ +# Description: Wrapper for starting/stopping services, with completion +# URL: http:///www.varlock.com +# Maintainer: Simone Rota, sip at varlock dot com +# Packager: Simone Rota, sip at varlock dot com +# Depends on: bash-completion + +name=service +version=0.2 +release=1 +source=(http://www.varlock.com/files/$name-$version.tar.gz) + +build() { + cd $name-$version + mkdir -p $PKG/usr/sbin + install -m 755 $name $PKG/usr/sbin + mkdir -p $PKG/usr/lib/bash-completion + install -m 755 ${name}_completions $PKG/usr/lib/bash-completion + +} |