diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-09-09 21:05:25 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-09-09 21:06:14 -0300 |
commit | edfdfd13692ba73436f5e9a285772e4abb64886a (patch) | |
tree | 494cd83b158058e2f56d39fdacd4b95d37d9ee0b | |
parent | 56768eca17cc9b49f59e39e9a8c87e0daa962bb7 (diff) |
libre/systemd: rename PRETTY_NAME and Boot Manager
-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 } |