Skip to content
This repository has been archived by the owner on Sep 30, 2018. It is now read-only.

Commit

Permalink
rework packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitor Lopes committed Jan 11, 2018
1 parent 2a0190f commit 28a1526
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 9 deletions.
5 changes: 2 additions & 3 deletions manjaro-webdad-settings-git/PKGBUILD
Expand Up @@ -2,7 +2,7 @@

_pkgname=manjaro-webdad-settings
pkgname="$_pkgname-git"
pkgver=r1.8392459
pkgver=r2.67b166f
pkgrel=1
pkgdesc="Manjaro WebDad Settings"
arch=('any')
Expand All @@ -13,7 +13,7 @@ source=("git+$url.git")
sha256sums=('SKIP')
conflicts=('manjaro-webdad-settings')
provides=('manjaro-webdad-settings')
depends=('webdad-theming')
depends=('webdad-theming' 'webdad-workspaces' )

pkgver() {
cd "$_pkgname"
Expand All @@ -26,4 +26,3 @@ package(){
install -d $pkgdir/etc
cp -r $srcdir/$_pkgname/etc $pkgdir/
}

4 changes: 2 additions & 2 deletions webdad-speech-git/PKGBUILD
Expand Up @@ -4,7 +4,7 @@ _pkgname=webdad-speech
pkgname="$_pkgname-git"
pkgver=r1.d8d2061
pkgrel=1
pkgdesc="provides text to speech for dunst notifications"
pkgdesc="provides text to speech ( TTS ) for dunst notifications"
arch=('any')
url="https://github.com/codesardine/webdad-speech"
license=('GPL')
Expand All @@ -13,7 +13,7 @@ source=("git+$url.git")
sha256sums=('SKIP')
conflicts=('webdad-speech')
provides=('webdad-speech')
depends=('mimic' 'manjaro-webdad-settings')
depends=('mimic')

pkgver() {
cd "$_pkgname"
Expand Down
2 changes: 1 addition & 1 deletion webdad-theming-git/PKGBUILD
Expand Up @@ -2,7 +2,7 @@

_pkgname=webdad-theming
pkgname="$_pkgname-git"
pkgver=r1.2b9447a
pkgver=r2.10c7f12
pkgrel=1
pkgdesc="Theming for Manjaro WebDad"
arch=('any')
Expand Down
5 changes: 2 additions & 3 deletions webdad-webapps-git/PKGBUILD
Expand Up @@ -4,7 +4,7 @@ _pkgname=webdad-webapps
pkgname="$_pkgname-git"
pkgver=r1.8bd9748
pkgrel=1
pkgdesc="WebDad Web Applications"
pkgdesc="JAK Web Application wrappers for Manjaro Forum/Wiki"
arch=('any')
url="https://github.com/codesardine/webdad-webapps"
license=('GPL')
Expand All @@ -25,10 +25,9 @@ pkgver() {
package(){
cd "$_pkgname"
cp -r $srcdir/$_pkgname/usr $pkgdir/
cp -r $srcdir/$_pkgname/opt $pkgdir/
cp -r $srcdir/$_pkgname/opt $pkgdir/
chmod 644 $pkgdir/usr/share/applications/Manjaro-Forum.desktop
chmod 644 $pkgdir/usr/share/applications/Manjaro-Wiki.desktop
chmod a+x $pkgdir/opt/webapps/manjaro/forum/manjaro-forum
chmod a+x $pkgdir/opt/webapps/manjaro/wiki/manjaro-wiki
}

27 changes: 27 additions & 0 deletions webdad-workspaces-git/PKGBUILD
@@ -0,0 +1,27 @@
# Maintainer: Vitor Lopes <vmnlop@gmail.com>

_pkgname=webdad-workspaces
pkgname="$_pkgname-git"
pkgver=r1.6ff36cd
pkgrel=1
pkgdesc="WebDad Workspaces functionality and scripts"
arch=('any')
url="https://github.com/codesardine/webdad-workspaces"
license=('GPL')
makedepends=('git')
source=("git+$url.git")
sha256sums=('SKIP')
conflicts=('webdad-workspaces')
provides=('webdad-workspaces')

pkgver() {
cd "$_pkgname"
(
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}

package(){
install -d $pkgdir/etc
cp -r $srcdir/$_pkgname/etc $pkgdir/
}

0 comments on commit 28a1526

Please sign in to comment.