Created
October 17, 2019 15:48
-
-
Save MadeOfMagicAndWires/6dc62a9599069349f555ac7272920628 to your computer and use it in GitHub Desktop.
add tty font and example config file to package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 4f707c28d21817e72304ab03f635df361ef341d6 Mon Sep 17 00:00:00 2001 | |
From: Joost Bremmer <[email protected]> | |
Date: Thu, 17 Oct 2019 17:19:58 +0200 | |
Subject: [PATCH] Add tty font and example config to package | |
--- | |
.SRCINFO | 2 +- | |
PKGBUILD | 9 +++++---- | |
2 files changed, 6 insertions(+), 5 deletions(-) | |
diff --git a/.SRCINFO b/.SRCINFO | |
index 6540a88..56b5a75 100644 | |
--- a/.SRCINFO | |
+++ b/.SRCINFO | |
@@ -1,7 +1,7 @@ | |
pkgbase = cava | |
pkgdesc = Console-based Audio Visualizer for Alsa | |
pkgver = 0.6.1 | |
- pkgrel = 1 | |
+ pkgrel = 2 | |
url = https://github.com/karlstav/cava | |
arch = any | |
license = MIT | |
diff --git a/PKGBUILD b/PKGBUILD | |
index dc60596..acba748 100644 | |
--- a/PKGBUILD | |
+++ b/PKGBUILD | |
@@ -1,9 +1,10 @@ | |
# Maintainer: Nissar Chababy <funilrys at outlook dot com> | |
-# Ex-Maintainer: Celestial Walrus <[email protected]> | |
+# Contributor: Joost Bremmer <[email protected]> | |
+# Contributor: Celestial Walrus <[email protected]> | |
pkgname=cava | |
pkgver=0.6.1 | |
-pkgrel=1 | |
+pkgrel=2 | |
pkgdesc='Console-based Audio Visualizer for Alsa' | |
arch=('any') | |
url='https://github.com/karlstav/cava' | |
@@ -21,6 +22,6 @@ build() { | |
package() { | |
cd $pkgname-$pkgver | |
- install -Dm755 cava "$pkgdir/usr/bin/cava" | |
- install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE | |
+ make DESTDIR="$pkgdir/" install | |
+ install -Dvm644 example_files/config "${pkgdir}/usr/share/doc/cava/config" | |
} | |
-- | |
2.23.0 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment