Skip to content

Commit a500bf6

Browse files
committed
man pages pl
1 parent e9896f5 commit a500bf6

File tree

3 files changed

+62
-3
lines changed

3 files changed

+62
-3
lines changed

mabox-browser-settings/PKGBUILD

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Contributor: Piotr Górski <[email protected]>
33

44
pkgname=mabox-browser-settings
5-
pkgver=20161127
5+
pkgver=20161127.39bf2f8
66
pkgrel=1
77
pkgdesc="Mabox Linux settings browser defaults"
88
arch=('any')
@@ -16,7 +16,7 @@ md5sums=('SKIP')
1616
pkgver() {
1717
# Mimics ABS pkgver described like this:
1818
# Commit date + git rev-parse --short origin/master
19-
cd mabox-utilities
19+
cd $pkgname
2020
(
2121
git show --format='%cI' -q master | sed 's/T.*//g;s/-//g'
2222
echo .
@@ -25,7 +25,7 @@ pkgver() {
2525
}
2626

2727
package() {
28-
cd $pkgname-$_gitcommit
28+
cd $pkgname
2929
mkdir -p $pkgdir/usr/lib/{chrome,chromium,{firefox,light,palemoon}/distribution}
3030
cp chrome/* $pkgdir/usr/lib/chrome
3131
cp chrome/* $pkgdir/usr/lib/chromium

mabox-cb-themes/PKGBUILD

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
pkgname=mabox-cb-themes
3+
pkgver=20161130.c350c23
4+
pkgrel=1
5+
pkgdesc="BunsenLabs themes forked for gtk 3.20 compability"
6+
arch=('any')
7+
url="https://github.com/MaboxOS/mabox-cb-themes"
8+
license=('GPL3' 'CCPL:by-sa')
9+
depends=('gtk-engine-murrine')
10+
makedepends=('git')
11+
optdepends=( \
12+
'lib32-gtk-engine-murrine: required for multilib (GTK2)' \
13+
'gtk3: required for the GTK3 themes')
14+
conflicts=("bunsen-themes-git")
15+
source=("git+$url.git")
16+
md5sums=('SKIP')
17+
18+
pkgver() {
19+
# Mimics ABS pkgver described like this:
20+
# Commit date + git rev-parse --short origin/master
21+
cd mabox-cb-themes
22+
(
23+
git show --format='%cI' -q master | sed 's/T.*//g;s/-//g'
24+
echo .
25+
git rev-parse --short master
26+
) | tr -d '\n'
27+
}
28+
29+
30+
package() {
31+
32+
install -d "$pkgdir"/usr/share/themes
33+
install -d "$pkgdir"/usr/share/doc/mabox-cb-themes
34+
35+
cp -r Bunsen-Blackish Bunsen CrunchBang "$pkgdir"/usr/share/themes
36+
cp LICENSE.{GPL,CC} "$pkgdir"/usr/share/doc/mabox-cb-themes
37+
}

man-pages-pl/PKGBUILD

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Maintainer: Michał Górny <[email protected]>
2+
# Contributor: Piotr Beling <[email protected]>
3+
pkgname=man-pages-pl
4+
pkgver=0.6
5+
pkgrel=2
6+
pkgdesc='A collection of Polish translations of Linux manual pages'
7+
arch=('any')
8+
license=('BSD' 'GPL' 'LGPL' 'MIT')
9+
url='http://sourceforge.net/projects/manpages-pl/'
10+
depends=('man-db')
11+
makedepends=('sed')
12+
source=(http://downloads.sourceforge.net/project/manpages-pl/manpages-pl-${pkgver}.tar.bz2)
13+
md5sums=('b3b16acf9de5c6d75bbf9c788bf5cf6a')
14+
15+
package() {
16+
cd $srcdir/manpages-pl-$pkgver
17+
18+
# groups.1 is provided by shadow package in Arch
19+
rm generated/man1/groups.1
20+
21+
make DESTDIR=$pkgdir install
22+
}

0 commit comments

Comments
 (0)