blob: 63cbab3c7f8fbfbe3ebe64f2b04504c1aa486899 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer (Arch): Connor Behan <connor.behan@gmail.com>
# Contributor (Arch): Eric Belanger <eric@archlinux.org>
# Contributor (Arch): judd <jvinet@zeroflux.org>
# Contributor: André Silva <emulatorman@hyperbola.info>
# parabola changes and rationale:
# - changed distro branding in lilo.conf
pkgname=lilo
pkgver=24.2
pkgrel=1
pkgdesc="A bootloader for GNU/Linux (Parabola rebranded)"
arch=('i686' 'x86_64')
url="https://alioth.debian.org/projects/lilo/"
license=('BSD')
backup=('etc/lilo.conf')
depends=('device-mapper' 'coreutils')
makedepends=('bin86' 'sharutils')
optdepends=('perl: to use keytab-lilo')
install=lilo.install
options=('!makeflags')
source=("http://lilo.alioth.debian.org/ftp/sources/${pkgname}-${pkgver}.tar.gz"
'lilo.conf')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
export LC_ALL=C
sed -i -e 's/strip lilo.static/strip lilo.static || true/' src/Makefile
make all
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -D -m644 "${srcdir}"/lilo.conf "${pkgdir}"/etc/lilo.conf
install -D -m644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
# All binaries in /usr/bin
mkdir "${pkgdir}"/usr/bin
mv "${pkgdir}"/sbin/lilo "${pkgdir}"/usr/bin/
mv "${pkgdir}"/usr/sbin/* "${pkgdir}"/usr/bin/
rm -rf "${pkgdir}"/sbin
rm -rf "${pkgdir}"/usr/sbin
# Avoid conflict with syslinux
mv "${pkgdir}"/usr/bin/keytab-lilo "${pkgdir}"/usr/bin/keytab-lilo.pl
# Remove Debian specific files
rm -rf "${pkgdir}"/etc/initramfs
rm -rf "${pkgdir}"/etc/kernel
}
md5sums=('fe5e8c9754cee342b958b5fcbbb6eb51'
'd55b950c53b954a9a202e7a72a010756')
|