18 lines
449 B
Plaintext
18 lines
449 B
Plaintext
# Description: SDL-based DOS emulator for classic games
|
|
# URL: http://dosbox.sourceforge.net
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
# Depends on: libsdl glu
|
|
|
|
name=dosbox
|
|
version=0.74
|
|
release=1
|
|
source=(https://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
sed -i '23a#include <cstddef>' include/dos_inc.h
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|