diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-10-03 14:42:44 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-10-03 14:42:44 +0000 |
commit | c5bcbd48f8653774514242f856781560093ccc64 (patch) | |
tree | db2f0cebfd82b854677e7cad2ff582d5cccb02cc /main/lang | |
parent | e717d334f1f07159b302a9d086452c10821361a1 (diff) | |
download | aports-c5bcbd48f8653774514242f856781560093ccc64.tar.bz2 aports-c5bcbd48f8653774514242f856781560093ccc64.tar.xz |
main/lang: new metapackage for translation packages
Diffstat (limited to 'main/lang')
-rw-r--r-- | main/lang/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main/lang/APKBUILD b/main/lang/APKBUILD new file mode 100644 index 0000000000..56c4760c9f --- /dev/null +++ b/main/lang/APKBUILD @@ -0,0 +1,23 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=lang +pkgver=0.1 +pkgrel=0 +pkgdesc="Meta package for translations" +url="http://alpinelinux.org" +arch="noarch" +license="GPL" +depends="" +makedepends="" +install="" +subpackages="" +source="" + +build() { + return 0 +} + +package() { + mkdir -p "$pkgdir" +} + |