summaryrefslogtreecommitdiff
path: root/pcr/tango-icon-theme/PKGBUILD
blob: fa2c3c5c6dc842b15a2160b74be5445d8166bb98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Maintainer (Arch): Steffen Weber <-boenki-gmx-de->
# Contributor (Arch): Thayer Williams <thayer@archlinux.org>
# Contributor (Arch): James Rayner <james@archlinux.org>
# Maintainer: André Silva <emulatorman@hyperbola.info>

pkgname=tango-icon-theme
pkgver=0.8.90
pkgrel=11
pkgrel+=.parabola1
pkgdesc="Icon theme that follows the Tango visual guidelines"
pkgdesc+="(Parabola rebranded)"
arch=('any')
url="http://tango.freedesktop.org"
license=('custom:public domain')
makedepends=('imagemagick' 'icon-naming-utils' 'intltool' 'librsvg')
options=(!strip !zipman)
source=(${url}/releases/${pkgname}-${pkgver}.tar.bz2
        symbol.svg::https://projects.parabola.nu/pac.git/plain/src/img+gpl/symbol-parabolaOfficialLogotype-default_r22px2_noa_nof_nos_svg1d1.svg
        rsvg.patch)
sha256sums=('e94004fa9aa6a7250ac4db6180e96f9c147db617c0d8e7fc8c9e2c42924e990c'
            '8957c9da7cbd10aed1a123ab1ab34459e8c2834f02b86fba93cb4cf0314c1ead'
            '8bdfe6117c22790590d106a7cf420e7aec3317ec3136c5767ab7eb653fbafce9')

prepare() {
  cd ${pkgname}-${pkgver}
  patch -p1 < "${srcdir}/rsvg.patch"
  autoreconf -fi
}

build() {
  cd ${pkgname}-${pkgver}
  ./configure --prefix=/usr --enable-png-creation
  make
}

package() {
  cd ${pkgname}-${pkgver}
  make DESTDIR="${pkgdir}" install

  # install licenses
  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"

  cd "${pkgdir}/usr/share/icons/Tango"

  # function using imagemagick to combine symbols with default folder-icon
  # used below to create xdg-folders
  comp() {
  composite -gravity center \( ${size}x${size}/"$1".png -resize 50% \) \
   ${size}x${size}/places/folder.png ${size}x${size}/places/folder-"$2".png
  }

  for size in 16 22 24 32 48 64 72 96 128; do
   # replace default logo with Parabola's
   rsvg-convert -w ${size} -h ${size} "${srcdir}/symbol.svg" \
    -o "${size}x${size}/places/start-here.png"
   # create icon for category "Education"
   ln -s "../status/dialog-information.png" \
    "${size}x${size}/categories/applications-science.png"

   # create xdg-folders
   comp apps/internet-web-browser publicshare
   comp actions/go-down download
   comp actions/document-properties templates
   comp mimetypes/audio-x-generic music
   comp mimetypes/image-x-generic pictures
   comp mimetypes/video-x-generic videos
   comp mimetypes/x-office-document documents
  done

  install -Dm644 "${srcdir}/symbol.svg" \
   "scalable/places/start-here.svg"
  ln -s "../status/dialog-information.svg" \
   "scalable/categories/applications-science.svg"
}