blob: 43ec149e8168727798911deca3631aadae53189a (
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
|
# Maintainer: Katy Moe <arch@katy.moe>
pkgname=gnudos
pkgver=1.11.4
pkgrel=1
pkgdesc="Library designed to help new users of the GNU system, who are coming from a DOS background, fit into the picture and start using the GNU system with ease"
arch=('x86_64' 'i686')
url="https://www.gnu.org/software/gnudos/"
license=('GPL')
depends=('glibc')
source=(
"https://ftp.gnu.org/gnu/gnudos/gnudos-$pkgver.tar.gz"
"https://ftp.gnu.org/gnu/gnudos/gnudos-$pkgver.tar.gz.sig"
)
sha256sums=('1dedeb5f8807596e5d1feb48d9c09d5848e026aac77bdd6203ab6fe9a211b991'
'SKIP')
validpgpkeys=('893ECEDAE0BA2F86C2333F9928229E699E9C841A') # Mohammed Isam <yahoo: mohammed_isam1984>
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
check() {
cd $pkgname-$pkgver
make check
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|