summaryrefslogtreecommitdiff
path: root/community/osiris/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/osiris/PKGBUILD
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/osiris/PKGBUILD')
-rw-r--r--community/osiris/PKGBUILD49
1 files changed, 49 insertions, 0 deletions
diff --git a/community/osiris/PKGBUILD b/community/osiris/PKGBUILD
new file mode 100644
index 000000000..163ed50ab
--- /dev/null
+++ b/community/osiris/PKGBUILD
@@ -0,0 +1,49 @@
+# $Id: PKGBUILD 91866 2013-05-28 17:38:40Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: jlvsimoes
+
+pkgname=osiris
+pkgver=4.2.3
+pkgrel=7
+pkgdesc="A file integrity management system"
+arch=('i686' 'x86_64')
+url="http://osiris.shmoo.com/"
+license=('custom')
+depends=('openssl' 'readline')
+install=$pkgname.install
+#source=(http://osiris.shmoo.com/data/osiris-$pkgver.tar.gz
+source=(http://arch.p5n.pp.ru/~sergej/dl/2011/osiris-$pkgver.tar.gz
+ osirismd.service
+ osirisd.service)
+md5sums=('1951c7dc0fe729af9ffaf58910340d12'
+ '8398d60bcbf0c90034473365abc3ece6'
+ '758d029a1ff53be11756330de595e77f')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+
+ sed -i "s|/sbin|/bin|g" src/install/install.sh.in
+
+ ./configure --prefix=/usr --sbindir=/usr/bin \
+ --enable-fancy-cli --with-md-root-dir=/usr/share/$pkgname
+ make all
+
+ # Arch-ify install locations
+ sed -i "s|^INSTALL_OSIRISM=0|INSTALL_OSIRISM=1|" src/install/install.sh
+ sed -i "s|^INSTALL_OSIRISD=0|INSTALL_OSIRISD=1|" src/install/install.sh
+ sed -i "s|^ROOT_GROUP=wheel|ROOT_GROUP=root|" src/install/install.sh
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+
+ mkdir -p $pkgdir/usr/share/licenses/$pkgname/
+ install -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/license.txt
+
+ make DESTDIR=$pkgdir install
+
+ rm -rf $pkgdir/usr/osiris $pkgdir/etc/init.d
+
+ install -Dm0644 $srcdir/osirisd.service $pkgdir/usr/lib/systemd/system/osirisd.service
+ install -Dm0644 $srcdir/osirismd.service $pkgdir/usr/lib/systemd/system/osirismd.service
+}