diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-09-09 21:05:25 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-09-22 16:15:02 -0300 |
commit | 35aea4052f4bc23013afa2a7141048de929048bd (patch) | |
tree | 7418b84c480dd689b6c3f02d3f5208a9f3d272f0 /libre/systemd/PKGBUILD | |
parent | 4736c8f6247f0795842c76920e91fa2466494ea9 (diff) |
libre/systemd: rename PRETTY_NAME and Boot Manager
Diffstat (limited to 'libre/systemd/PKGBUILD')
-rw-r--r-- | libre/systemd/PKGBUILD | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libre/systemd/PKGBUILD b/libre/systemd/PKGBUILD index 313e37d0c..2a3318608 100644 --- a/libre/systemd/PKGBUILD +++ b/libre/systemd/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=systemd pkgname=systemd pkgver=225 -pkgrel=1.parabola1 +pkgrel=1.parabola2 arch=('i686' 'x86_64') url="http://www.freedesktop.org/wiki/Software/systemd" makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' @@ -31,6 +31,12 @@ md5sums=('SKIP' prepare() { cd "$pkgname" + # Rename Linux -> GNU/Linux-libre (PRETTY_NAME) + sed -i '\|PRETTY_NAME| s|Linux|GNU/Linux-libre|' src/kernel-install/90-loaderentry.install + + # Rename Linux Boot Manager -> Systemd Boot Manager + sed -i 's|Linux Boot Manager|Systemd Boot Manager|' src/boot/bootctl.c + ./autogen.sh } |