This commit is contained in:
Jack L. Frost 2015-06-08 12:31:11 +03:00
commit 3b558ff263
2 changed files with 35 additions and 0 deletions

15
.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
pkgbase = systemd-dummy
pkgdesc = A dummy package to provide systemd
pkgver = 1
pkgrel = 3
epoch = 1
url = http://www.freedesktop.org/wiki/Software/systemd
arch = any
license = GPL2
license = LGPL2.1
license = MIT
depends = libsystemd
provides = systemd=218
pkgname = systemd-dummy

20
PKGBUILD Normal file
View File

@ -0,0 +1,20 @@
# Maintainer: Jack L. Frost <fbt@fleshless.org>
# vim: ft=sh syn=sh et
pkgdesc='A dummy package to provide systemd'
pkgname='systemd-dummy'
epoch=1
pkgver=1
pkgrel=3
depends=( 'libsystemd' )
arch=( 'any' )
url="http://www.freedesktop.org/wiki/Software/systemd"
license=('GPL2' 'LGPL2.1' 'MIT')
provides=( 'systemd=218' )
package() {
# systemd-tmfiles stub
mkdir -pm755 "${pkgdir}/usr/bin"
ln -s /usr/bin/true "${pkgdir}/usr/bin/systemd-tmpfiles"
}