aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJordan Day2017-03-27 11:52:46 -0500
committerJordan Day2017-03-27 11:54:27 -0500
commitd46b13d489488a848165d02d9eba7b87111fe293 (patch)
tree6519db11ff9fa2f580b52148f108e9739c6bc226
downloadaur-d46b13d489488a848165d02d9eba7b87111fe293.tar.gz
Initial commit
-rw-r--r--.SRCINFO17
-rw-r--r--.gitignore3
-rw-r--r--PKGBUILD26
-rw-r--r--README.md1
-rw-r--r--vice.desktop10
-rw-r--r--vice.pngbin0 -> 65563 bytes
6 files changed, 57 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..42bed4fe70f9
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,17 @@
+pkgbase = vice-gnome
+ pkgdesc = Versatile Commodore Emulator (Provides desktop files for easy use in Gnome)
+ pkgver = 3.0
+ pkgrel = 1
+ url = http://vice-emu.sourceforge.net
+ arch = i686
+ arch = x86_64
+ license = GPL
+ depends = $_pkgname
+ provides = $_pkgname
+ source = vice.png
+ source = vice.desktop
+ md5sums = cb764e40ad039399aac16efc647725ed
+ md5sums = 8588f10da96f035b55384e6789931264
+
+pkgname = vice-gnome
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..29f164436680
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+*.tar.xz
+src
+pkg
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..308d6687176b
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Jordan Day < jordanday444 at gmail dot com >
+
+_pkgname=vice
+pkgname=$_pkgname-gnome
+pkgver=3.0
+pkgrel=1
+pkgdesc="Versatile Commodore Emulator (Provides desktop files for easy use in Gnome)"
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://vice-emu.sourceforge.net'
+depends=('$_pkgname')
+provides=('$_pkgname')
+
+source=(
+ "$_pkgname.png"
+ "$_pkgname.desktop"
+)
+
+md5sums=('cb764e40ad039399aac16efc647725ed'
+ '8588f10da96f035b55384e6789931264')
+
+package() {
+ # Install the XDG desktop file and icon
+ install -Dm644 $_pkgname.desktop "$pkgdir/usr/share/applications/$_pkgname.desktop"
+ install -Dm644 $_pkgname.png "$pkgdir/usr/share/pixmaps/$_pkgname.png"
+}
diff --git a/README.md b/README.md
new file mode 100644
index 000000000000..9e2bb3a17558
--- /dev/null
+++ b/README.md
@@ -0,0 +1 @@
+vice-gnome
diff --git a/vice.desktop b/vice.desktop
new file mode 100644
index 000000000000..75ce2c61cf65
--- /dev/null
+++ b/vice.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Encoding=UTF-8
+Type=Application
+Name=VICE: C64 Emulator
+Comment=Commodore 64 Emulator
+Exec=x64
+Icon=vice
+Terminal=false
+StartupNotify=false
+Categories=Application;Game;
diff --git a/vice.png b/vice.png
new file mode 100644
index 000000000000..612dec5d87a2
--- /dev/null
+++ b/vice.png
Binary files differ