diff options
author | Vladislav Tyulbashev | 2017-12-18 00:45:00 +0300 |
---|---|---|
committer | Vladislav Tyulbashev | 2017-12-18 00:45:00 +0300 |
commit | e51ff9fb3de069a38ad36106db73a580ebfb1bdc (patch) | |
tree | 0da1208f8524f764f653475c3da6956653edf447 | |
download | aur-e51ff9fb3de069a38ad36106db73a580ebfb1bdc.tar.gz |
first release
-rw-r--r-- | .SRCINFO | 17 | ||||
-rw-r--r-- | PKGBUILD | 28 |
2 files changed, 45 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..8074bdce3bd --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = ricoh-sp150-ppd + pkgdesc = CUPS driver for Ricoh SP150 series + pkgver = v1.0.22 + pkgrel = 1 + url = http://support.ricoh.com/bb/html/dr_ut_e/re1/model/sp150/sp150.htm + arch = x86_64 + license = unknown + depends = cups + depends = jbigkit + depends = imagemagick + depends = ghostscript + optdepends = inotify-tools: asynchronous printing support + source = http://support.ricoh.com/bb/pub_e/dr_ut_e/0001294/0001294700/V10_22/r75386L2.exe + md5sums = SKIP + +pkgname = ricoh-sp150-ppd + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..372f3c61fc0 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Vladislav Tyulbashev <vtyulb@vtyulb.ru> + +pkgname='ricoh-sp150-ppd' +pkgver='v1.0.22' +pkgrel=1 + +pkgdesc="CUPS driver for Ricoh SP150 series" +arch=('x86_64') +url="http://support.ricoh.com/bb/html/dr_ut_e/re1/model/sp150/sp150.htm" +license=('unknown') + +depends=('cups' 'jbigkit' 'imagemagick' 'ghostscript') +builddepends=('binutils' 'p7zip') +optdepends=('inotify-tools: asynchronous printing support') + +source=(http://support.ricoh.com/bb/pub_e/dr_ut_e/0001294/0001294700/V10_22/r75386L2.exe) +md5sums=('SKIP') + +build() { + ar x RICOH-SP-150_1.0-22_amd64.deb + tar -xf data.tar.gz + rm -rf usr/share/doc +} + +package() { + mv opt $pkgdir/ + mv usr $pkgdir/ +} |