This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Marius Nestor <marius softpedia com> | |
| # Contributor: Doug Newgard <scimmia22 at outlook dot com> | |
| pkgname=trillian | |
| pkgver=2.0.0.4 | |
| pkgrel=1 | |
| pkgdesc="A commercial, multi-protocol and cross-platform IM client" | |
| arch=('i686' 'x86_64') | |
| url="https://www.trillian.im" | |
| license=('Proprietary') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Markus Heuser <[email protected] | |
| # Contributor: Markus Heuser <[email protected]> | |
| pkgname=dia2code | |
| pkgver=0.8.7 | |
| pkgrel=1 | |
| pkgdesc="Generates code in various languages from your Dia drawings" | |
| arch=('x86_64' 'i686') | |
| url="http://dia2code.sourceforge.net/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Gordin <9ordin @t gmail dot com> | |
| pkgname=texturepacker | |
| pkgver=3.4.0 | |
| pkgrel=1 | |
| pkgdesc="The most complete tool for sprite sheet creation and image optimization" | |
| arch=('x86_64') | |
| url="http://www.texturepacker.com" | |
| license=('unknown') | |
| install='texturepacker.install' | |
| ARCH='64' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Marius Nestor <marius softpedia com> | |
| # Contributor: Doug Newgard <scimmia22 at outlook dot com> | |
| pkgname=trillian | |
| pkgver=1.2.0.2 | |
| pkgrel=1 | |
| pkgdesc="A commercial, multi-protocol and cross-platform IM client" | |
| arch=('i686' 'x86_64') | |
| url="https://www.trillian.im" | |
| license=('Proprietary') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CC = gcc | |
| CFLAGS = -g -Wall -fPIC -lm -std=gnu99 -O3 -march=native -DCONJUGRAD_FLOAT=64 | |
| all: libmyfunc.so | |
| m.PHONY : clean | |
| libmyfunc.so: myfunc.o | |
| gcc -shared -Wl,-soname,$@ -o $@ $^ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Benjamin A. Shelton <[email protected]> | |
| # Source: https://github.com/zancarius/archlinux-pkgbuilds | |
| pkgname=python2-billiard | |
| pkgver=3.3.0.10 | |
| pkgrel=1 | |
| pkgdesc="Python multiprocessing fork with improvements and bugfixes." | |
| arch=('i686' 'x86_64') | |
| url="http://pypi.python.org/pypi/billiard" | |
| license=(BSD) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Tevin Zhang <mail2tevin {at} gmail {dot} com> | |
| pkgname=python2-celery | |
| pkgver=3.1.6 | |
| pkgrel=0 | |
| pkgdesc="Distributed Task Queue" | |
| arch=("any") | |
| url="http://celeryproject.org/" | |
| license=("BSD") | |
| depends=("python2" "python2-kombu>=3.0.7" "python2-dateutil" "python2-billiard>=3.3.0.10" "python2-amqp>=1.3.3") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Xeross <[email protected]> | |
| # Contributor: Timothée Ravier <[email protected]> | |
| pkgname=python2-amqp | |
| pkgver=1.3.3 | |
| pkgrel=1 | |
| pkgdesc="Low-level AMQP client for Python (fork of amqplib)" | |
| arch=('any') | |
| url="https://github.com/celery/py-amqp/" | |
| license=("LGPL") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Tevin Zhang <mail2tevin {at} gmail {dot} com> | |
| pkgname=python2-celery | |
| pkgver=3.1.4 | |
| pkgrel=0 | |
| pkgdesc="Distributed Task Queue" | |
| arch=("any") | |
| url="http://celeryproject.org/" | |
| license=("BSD") | |
| depends=("python2" "python2-kombu" "python2-dateutil" "python2-billiard" "python2-amqp") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CC = gcc | |
| CFLAGS = -g -Wall -fPIC -std=gnu99 -O3 -march=native | |
| all: libtest.so | |
| libtest.so: test.o | |
| $(CC) -shared -Wl,-soname,libtest.so -o libtest.so $< | |
| %.o: %.c | |
| $(CC) -c $(CFLAGS) $< |