summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorfrantic10482017-04-02 19:17:43 +0800
committerfrantic10482017-04-02 19:17:43 +0800
commit5b6611c3bd49098d2e3b2ebafe5a59a5396be1c0 (patch)
tree355e1c2ebfa9888529bdeba72e61f997a5e8a804
parent18b780184945059ddc7da2ec3deea2e43e06478c (diff)
downloadaur-5b6611c3bd49098d2e3b2ebafe5a59a5396be1c0.tar.gz
add man page to source array
-rw-r--r--.SRCINFO9
-rw-r--r--.gitignore16
-rw-r--r--PKGBUILD13
3 files changed, 30 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3d636dcafc7c..0dc0bd6b2e4b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,9 @@
+# Generated by mksrcinfo v8
+# Sun Apr 2 11:15:41 UTC 2017
pkgbase = waifu2x-git
pkgdesc = Image rescaling and noise reduction using the power of convolutional neural networks
- pkgver = r295.a5228c5
- pkgrel = 2
+ pkgver = r427.f89dd61
+ pkgrel = 1
arch = x86_64
license = MIT
makedepends = git
@@ -13,8 +15,11 @@ pkgbase = waifu2x-git
optdepends = cuda: Significantly speeds up operations, but only works with NVIDIA GPU
provides = waifu2x
provides = waifu2x-converter-cpp
+ noextract = waifu2x.1.gz
source = git+https://github.com/tanakamura/waifu2x-converter-cpp.git
+ source = waifu2x.1.gz
md5sums = SKIP
+ md5sums = bc1a849b7bc63dfa8d54497fa1297a00
pkgname = waifu2x-git
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..3bf29c7d6e65
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,16 @@
+#dolphin
+.directory
+
+#pkg building files
+
+*.7z
+*.tar.xz
+*.tar.gz
+
+src/
+pkg/
+
+# source
+/waifu2x-converter-cpp/
+
+!waifu2x.1.gz
diff --git a/PKGBUILD b/PKGBUILD
index 16f24a522556..4bce31c47e5a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,8 @@
+# Maintainer: Frantic1048 <archer@frantic1048.com>
# Maintainer: Fredrick Brennan <admin@8chan.co>
pkgname=waifu2x-git
-pkgver=r295.a5228c5
-pkgrel=2
+pkgver=r427.f89dd61
+pkgrel=1
pkgdesc="Image rescaling and noise reduction using the power of convolutional neural networks"
arch=('x86_64')
url=""
@@ -16,9 +17,9 @@ replaces=()
backup=()
options=()
install=
-source=('git+https://github.com/tanakamura/waifu2x-converter-cpp.git')
-noextract=()
-md5sums=('SKIP') #generate with 'makepkg -g'
+source=('git+https://github.com/tanakamura/waifu2x-converter-cpp.git' 'waifu2x.1.gz')
+noextract=('waifu2x.1.gz')
+md5sums=('SKIP' 'bc1a849b7bc63dfa8d54497fa1297a00') #generate with 'makepkg -g'
gitreponame="waifu2x-converter-cpp"
prepare() {
@@ -38,7 +39,7 @@ package() {
## Waifu2x's Makefile has no `install`
## Just copy its binary, and some files it require...
make DESTDIR=$pkgdir install -C$gitreponame
- install -D ../waifu2x.1.gz $pkgdir/usr/share/man/man1/waifu2x.1.gz
+ install -D ./waifu2x.1.gz $pkgdir/usr/share/man/man1/waifu2x.1.gz
}
# From https://wiki.archlinux.org/index.php/VCS_package_guidelines#Git