summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD17
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..618355d6e825
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Wed Dec 7 08:04:04 UTC 2016
+pkgbase = con2fbmap
+ pkgdesc = shows and sets mapping between consoles and framebuffer devices
+ pkgver = 2.1
+ pkgrel = 28
+ url = http://debian.org
+ arch = i686
+ arch = x86_64
+ arch = armv6h
+ arch = armv7h
+ source = http://ftp.lanet.kr/debian/pool/main/f/fbset/fbset_2.1-28.debian.tar.xz
+ md5sums = deb9d0590d660ac8cd871fe8d84072a0
+
+pkgname = con2fbmap
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..ad5f11a8038b
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: c0ldcat <firez199984@gmail.com>
+
+pkgname=con2fbmap
+pkgver=2.1
+pkgrel=28
+pkgdesc="shows and sets mapping between consoles and framebuffer devices"
+url="http://debian.org"
+arch=('i686' 'x86_64' 'armv6h' 'armv7h')
+source=("http://ftp.lanet.kr/debian/pool/main/f/fbset/fbset_2.1-28.debian.tar.xz")
+md5sums=("deb9d0590d660ac8cd871fe8d84072a0")
+
+package() {
+ cd "${srcdir}"
+ patch -i debian/patches/03_con2fbmap.patch
+ gcc con2fbmap.c -o con2fbmap
+ install -Dm755 con2fbmap ${pkgdir}/usr/bin/con2fbmap
+}