blob: e92b888dec1330a836799867a577b399d69b9337 (
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
|
# Maintainer: Nicola Revelant <nicolarevelant44@gmail.com>
# Contributor: Caltlgin Stsodaat <contact@fossdaily.xyz>
pkgname=papirus-filezilla-themes
pkgver=20200105
pkgrel=2
pkgdesc='Papirus icon theme for Filezilla'
arch=('any')
url='https://github.com/PapirusDevelopmentTeam/papirus-filezilla-themes'
license=('GPL3')
depends=('filezilla')
source=("${url}/archive/${pkgver}.tar.gz")
sha256sums=('28e28c50b6b500b522f78590ce442e2ed93c5c2bd7a169ee1d31ab588af92427')
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="${pkgdir}" install
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}
|