summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-11-20 23:00:35 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-11-20 23:00:35 -0500
commite5d1a2dda9de60080be9f259f8325c29ed508fcb (patch)
tree93c30cf67bba99db71ea847f51908eaab9a40b71
parentfb4f79ab4c65cb4d868b148230e4a6ec1eaabce4 (diff)
Move dosemu somewhere else until it is more ready for inclusion (emulator reasons)
-rw-r--r--.gitignore11
-rw-r--r--~lukeshu/dosemu-libre/PKGBUILD38
2 files changed, 8 insertions, 41 deletions
diff --git a/.gitignore b/.gitignore
index 0b611be..d0c96fb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,14 +1,19 @@
-~nonfree/
+# probably source downloads
*.tar.gz
*.tar.xz
*.tar.bz2
*.tgz
*.zip
-*~
-#*#
+# pacman things
src/
pkg/
*.pkg.tar.*
*.src.tar.*
+
+# idk, the parabola .gitignore ignores it
namcap.log
+
+# I don't want to track these repos
+~dosemu
+~nonfree
diff --git a/~lukeshu/dosemu-libre/PKGBUILD b/~lukeshu/dosemu-libre/PKGBUILD
deleted file mode 100644
index 559d279..0000000
--- a/~lukeshu/dosemu-libre/PKGBUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
-# Contributor: Eric Belanger <belanger@astro.umontreal.ca>
-# Contributor: Bob Finch <w9ya@arrl.net>
-# Contributor: Luke Shumaker <lukeshu@sbcglobal.net>
-
-pkgname=dosemu-libre
-pkgver=1.4.0
-pkgrel=3
-pkgdesc="DOS emulator"
-arch=('i686' 'x86_64')
-url="http://www.dosemu.org/"
-license=('custom' 'GPL2' 'CMU')
-depends=('gpm' 'slang' 'sdl' 'libxxf86vm' 'libsndfile' 'sh')
-backup=('etc/dosemu/dosemu.conf'
- 'etc/dosemu/dosemu.users'
- 'etc/dosemu/global.conf')
-source=(http://downloads.sourceforge.net/sourceforge/dosemu/dosemu-$pkgver.tgz)
-md5sums=('0bba530637266f99d404ba15e3f118d4')
-
-_extract_license() {
- sed -e "1,/^--- $1/d" -e '/^---/,$d' COPYING.DOSEMU | sed 1d > $pkgdir/usr/share/licenses/$pkgname/$2
-}
-
-build() {
- cd $srcdir/dosemu-$pkgver
- ./configure --prefix=/usr --with-fdtarball=none --mandir=/usr/share/man
- make || return 1
-
- make DESTDIR=$pkgdir install || return 1
-
- install -D -m 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING && \
- install -D -m 644 COPYING.DOSEMU $pkgdir/usr/share/licenses/$pkgname/COPYING.DOSEMU
- _extract_license 'The Mach DOS Emulator' COPYING.CMU
- _extract_license 'XFree86 (mouse code)' COPYING.mouse
- _extract_license 'The VGA fonts' COPYING.copyleft_vgafonts
-}