mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 17:37:36 +08:00
26 lines
671 B
Bash
26 lines
671 B
Bash
|
|
|
|
pkgname=systemd-units
|
|
pkgver=20120528
|
|
pkgrel=1
|
|
pkgdesc="Chakra GNU/Linux specific Systemd unit files"
|
|
arch=('any')
|
|
url="http://github.com/falconindy/systemd-arch-units"
|
|
license=('MIT')
|
|
depends=('systemd>=37')
|
|
groups=('systemd')
|
|
install=systemd-units.install
|
|
source=("http://chakra-linux.org/sources/${pkgname}/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('1bef86deec263d52032114ee696323b2')
|
|
|
|
|
|
|
|
package() {
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
sed -i 's/udev-settle/systemd-&/' "$pkgdir"/usr/lib/systemd/system/{lvm,dmraid}.service
|
|
rm "$pkgdir"/usr/lib/systemd/system/bluetooth.service
|
|
rm "$pkgdir"/usr/lib/systemd/system/cups.service
|
|
} |