blob: 8009909b4eb1bc287b0d584f12cc0f35ddd4a2c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Jonas Heinrich <onny@project-insanity.org>
# Contributor: Jonas Heinrich <onny@project-insanity.org>
pkgname=nextcloud-integration-twitter
pkgver=0.0.10
pkgrel=1
pkgdesc="Twitter integration into Nextcloud"
arch=('any')
url="https://github.com/nextcloud/integration_twitter"
license=('AGPL3')
depends=('nextcloud')
makedepends=()
options=('!strip')
source=("https://github.com/nextcloud/integration_twitter/releases/download/v${pkgver}/integration_twitter-${pkgver}.tar.gz")
sha512sums=('72e087cf0922abb180833ecfab5a962a793ffcbcd30c6369eedd573495cef14697804f5d33f2b776cda9b012f0534ea3bef5eae6c8e731eaa969a509ea3bbe8a')
package() {
install -d "${pkgdir}/usr/share/webapps/nextcloud/apps"
cp -a "${srcdir}/integration_twitter" "${pkgdir}/usr/share/webapps/nextcloud/apps/integration_twitter"
}
|