mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-09 10:42:12 +01:00
31 lines
766 B
Plaintext
31 lines
766 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=ms-sys
|
|
pkgver=2.2.1
|
|
pkgrel=1
|
|
pkgdesc="A tool for creating Microsoft compatible boot records"
|
|
url="http://ms-sys.sourceforge.net/"
|
|
arch="all"
|
|
license="GPL2+"
|
|
depends=""
|
|
depends_dev=""
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://downloads.sourceforge.net/ms-sys/ms-sys-$pkgver.tar.gz"
|
|
_builddir="$srcdir"/ms-sys-$pkgver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make bin/ms-sys || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
install -Dm755 bin/ms-sys "$pkgdir"/usr/bin/ms-sys || return 1
|
|
install -Dm644 man/ms-sys.1 "$pkgdir"/usr/share/man/man1/ms-sys.1 \
|
|
|| return 1
|
|
|
|
}
|
|
|
|
md5sums="659fb46f1b014abe64ae7d635c5bc1f8 ms-sys-2.2.1.tar.gz"
|