summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2015-02-06 12:41:29 -0300
committerNicolás Reynolds <fauno@endefensadelsl.org>2015-02-06 12:41:29 -0300
commitaf79d5fbd2e870167f439094f4a1ba85b2ad2e38 (patch)
tree3bdd6b101e9e5461345b2b42bcf3b30177d94d16 /pcr
parent1416490658fb1d376129a926572f34b6be8c3283 (diff)
parent9a4296be7488240f16cd3944f96aea8d936fa276 (diff)
downloadabslibre-af79d5fbd2e870167f439094f4a1ba85b2ad2e38.tar.gz
abslibre-af79d5fbd2e870167f439094f4a1ba85b2ad2e38.tar.bz2
abslibre-af79d5fbd2e870167f439094f4a1ba85b2ad2e38.zip
Merge branch 'master' of git://projects.parabola.nu/abslibre/abslibre
Diffstat (limited to 'pcr')
-rw-r--r--pcr/gnuhealth/PKGBUILD3
-rw-r--r--pcr/smartypants/PKGBUILD30
-rw-r--r--pcr/vim-autotag/PKGBUILD35
3 files changed, 68 insertions, 0 deletions
diff --git a/pcr/gnuhealth/PKGBUILD b/pcr/gnuhealth/PKGBUILD
index a85e7dff5..db22de64c 100644
--- a/pcr/gnuhealth/PKGBUILD
+++ b/pcr/gnuhealth/PKGBUILD
@@ -35,6 +35,9 @@ sha512sums=(
f76060d334a85a7d726dbe6f2f9bc7206cf4ad7bf5abcdf143bc432411e89701320047c672bebefaeea9f92d5c31a298553f90ad35c9b2e17ae4058482cd067c
SKIP
)
+validpgpkeys=(
+ 14C7FD1362749706D602FBE2EADA01E3E44B8011 # Luis Falcon (meanmicio at GNU) <falcon@gnu.org>
+)
prepare() {
# fix python2 problem
diff --git a/pcr/smartypants/PKGBUILD b/pcr/smartypants/PKGBUILD
new file mode 100644
index 000000000..c803986e8
--- /dev/null
+++ b/pcr/smartypants/PKGBUILD
@@ -0,0 +1,30 @@
+# Contributor: Daniel Milewski <niitotantei@riseup.net>
+
+pkgname=smartypants
+pkgver=1.5.1
+pkgrel=1
+pkgdesc='Smart punctuation for web sites'
+arch=(any)
+url=http://daringfireball.net/projects/smartypants/
+license=(BSD3)
+depends=(perl)
+makedepends=(unzip)
+source=(http://daringfireball.net/projects/downloads/SmartyPants_$pkgver.zip)
+sha256sums=(2813a12d8dd23f091399195edd7965e130103e439e2a14f298b75b253616d531)
+
+build()
+{
+ cd "$srcdir/SmartyPants_$pkgver"
+
+ pod2man SmartyPants.pl > smartypants.1
+ sed -n '/^Copyright (c)/,/damage\./p' 'SmartyPants Readme.txt' > LICENSE
+}
+
+package()
+{
+ cd "$srcdir/SmartyPants_$pkgver"
+
+ install -Dm 755 SmartyPants.pl "$pkgdir/usr/bin/smartypants"
+ install -Dm 644 smartypants.1 "$pkgdir/usr/share/man/man1/smartypants.1"
+ install -Dm 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
diff --git a/pcr/vim-autotag/PKGBUILD b/pcr/vim-autotag/PKGBUILD
new file mode 100644
index 000000000..6c53c0e7d
--- /dev/null
+++ b/pcr/vim-autotag/PKGBUILD
@@ -0,0 +1,35 @@
+# Contributor: Daniel Milewski <niitotantei@riseup.net>
+
+pkgname=vim-autotag
+pkgver=r5.433b6b5
+_gitcommit=433b6b5be330615c4cb97ec748a773115dcced60
+pkgrel=1
+pkgdesc='Automatically discover and "properly" update ctags files on save'
+arch=(any)
+url=https://github.com/craigemery/vim-autotag
+license=(custom:vim)
+groups=(vim-plugins)
+mkdepends=(git)
+depends=(ctags vim)
+mksource=($pkgname-$pkgver::git+https://github.com/craigemery/$pkgname.git#commit=$_gitcommit)
+source=(https://repo.parabola.nu/other/$pkgname/$pkgname-$pkgver.tar.gz)
+mksha256sums=(SKIP)
+sha256sums=(3fe4270ec84a4299866c6c205a9869055a72194c6482fed7a7c4bb99acc5b5b0)
+
+mksource()
+{
+ cd "$srcdir/$pkgname-$pkgver"
+
+ rm .gitignore
+}
+
+package()
+{
+ cd "$srcdir/$pkgname-$pkgver"
+
+ install -Dm 644 plugin/autotag.py "$pkgdir/usr/share/vim/vimfiles/plugin/autotag.py"
+ install -Dm 644 plugin/autotag.vim "$pkgdir/usr/share/vim/vimfiles/plugin/autotag.vim"
+
+ install -d "$pkgdir/usr/share/licenses/$pkgname"
+ ln -s /usr/share/licenses/vim-runtime/license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}