summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bc03b39d15038039a958df6a1ad7eb457b28eae6 (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
# Maintainer: Tom Richards <tom@tomrichards.net>
# https://github.com/t-richards/aur-editorconfig-gedit
pkgname=editorconfig-gedit
pkgver=0.5.3
pkgrel=1
pkgdesc="EditorConfig plugin for gedit"
arch=('any')
url="http://editorconfig.org"
license=('BSD')
depends=('gedit' 'python-editorconfig')

source=("https://github.com/editorconfig/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('d6c88a400bfbab36355ab6674db65c0d4997c970fc58a08752c1b331bea625e3')

package() {
    cd "$pkgname-$pkgver"

    # Plugin
    _installdir="$pkgdir/usr/lib/gedit/plugins"
    mkdir -p "$_installdir"
    cp -r editorconfig_plugin/ "$_installdir"
    cp editorconfig.plugin "$_installdir"
    cp editorconfig_gedit3.py "$_installdir"
    sed -i 's/python/python3/' "$_installdir/editorconfig.plugin"

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