summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2018-09-02 16:23:34 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2018-09-02 16:23:34 -0500
commit014f9e881cf2ae462a29beed341f3472bfb0f631 (patch)
treee196c217691da2b8d0ce36b43d2db18a61773cdb /pcr
parent7bcc4ac4b2c9be182faf39ac66230fe7284c0801 (diff)
downloadabslibre-014f9e881cf2ae462a29beed341f3472bfb0f631.tar.gz
abslibre-014f9e881cf2ae462a29beed341f3472bfb0f631.tar.bz2
abslibre-014f9e881cf2ae462a29beed341f3472bfb0f631.zip
Removing peek: This package is in [community] repo
Diffstat (limited to 'pcr')
-rw-r--r--pcr/peek/PKGBUILD46
1 files changed, 0 insertions, 46 deletions
diff --git a/pcr/peek/PKGBUILD b/pcr/peek/PKGBUILD
deleted file mode 100644
index 9c5327403..000000000
--- a/pcr/peek/PKGBUILD
+++ /dev/null
@@ -1,46 +0,0 @@
-# Maintainer (AUR): Philipp Wolfer <ph.wolfer@gmail.com>
-
-# parabola changes and rationale:
-# no changes.
-
-pkgname=peek
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="Simple screen recorder with an easy to use interface"
-arch=('i686' 'x86_64' 'armv7h')
-url="https://github.com/phw/peek"
-license=('GPL3')
-depends=(gtk3 libkeybinder3 ffmpeg)
-makedepends=(cmake vala gettext txt2man)
-optdepends=(
- 'gst-plugins-good: WebM output under Gnome Shell'
- 'gst-plugins-ugly: MP4 output under Gnome Shell'
- 'gifski: High quality GIF animations with thousands of colors'
-)
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/phw/${pkgname}/archive/${pkgver}.tar.gz)
-sha256sums=('7035ad6817306bf93b0052bf989120793e26b3fbcba51dda3cdf345342214af5')
-
-prepare() {
- mkdir -p build
-}
-
-build() {
- cd "build"
- cmake "${srcdir}/${pkgname}-${pkgver}" \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DBUILD_TESTS=ON \
- -DCMAKE_BUILD_TYPE=Release \
- -DGSETTINGS_COMPILE=OFF \
- -DENABLE_FILECHOOSERNATIVE=ON
- make
-}
-
-check() {
- cd "build"
- make test
-}
-
-package() {
- cd "build"
- make DESTDIR=${pkgdir} install
-}