diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-05-12 15:50:11 -0300 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-05-12 15:50:11 -0300 |
commit | 4eb80920957e1875221602209af38d79441de10d (patch) | |
tree | bab9933e341f15abb537a471471b46026259bb90 | |
parent | f1a648bad1310310522bb2923b574022ae3de0c1 (diff) |
torque: fixing systemd service path
-rw-r--r-- | pcr/torque/PKGBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pcr/torque/PKGBUILD b/pcr/torque/PKGBUILD index 7ed85c1d8..5f469fa5f 100644 --- a/pcr/torque/PKGBUILD +++ b/pcr/torque/PKGBUILD @@ -3,7 +3,7 @@ pkgname=torque pkgver=4.2.2 _pkgver=1065 -pkgrel=1 +pkgrel=2 pkgdesc='An open source resource manager providing control over batch jobs and distributed compute nodes.' url=http://www.adaptivecomputing.com/products/open-source/$pkgname/ arch=( @@ -53,8 +53,9 @@ build() { package() { cd $srcdir/$pkgname-$pkgver setarch $CARCH make DESTDIR=$pkgdir install - mkdir -p $pkgdir/etc/systemd/system - cp $srcdir/*.service $pkgdir/etc/systemd/system + + install -d $pkgdir/usr/lib/systemd/system + install -Dm644 $srcdir/*.service $pkgdir/usr/lib/systemd/system } # vim:set ts=2 sw=2 et: |