blob: 1b25e6816759a77c717261bddab7be97bdf54433 (
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
30
31
32
|
# Copyright 2015 Aleksey Filippov
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Maintainer: Aleksey Filippov <sarum9in@gmail.com>
pkgname=turtle
pkgver=1.3.0
pkgrel=1
pkgdesc="A C++ Mock_object library based on Boost with a focus on usability, simplicity and flexibility."
arch=('i686' 'x86_64')
url="http://turtle.sourceforge.net"
license=('Boost')
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/${pkgname}-${pkgver}.tar.bz2)
sha256sums=('1f0a8f7b7862e0f99f3849d60b488b1ce6546f1f7cfeb4d8f6c0261f1e3dcbe0')
package() {
install -dm755 $pkgdir/usr/include/turtle
install -dm755 $pkgdir/usr/include/turtle/detail
install -m644 $srcdir/include/turtle/*.hpp $pkgdir/usr/include/turtle
install -m644 $srcdir/include/turtle/detail/* $pkgdir/usr/include/turtle/detail
}
|