summaryrefslogtreecommitdiff
path: root/elements/swift/gf-complete.bst
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2017-11-26 23:40:38 +0000
committerJavier Jardón <jjardon@gnome.org>2017-12-12 15:58:11 +0000
commit7aad5150f69da42b84994c353283db5daf8e967f (patch)
tree813f30921faea689677aa308bd61488229266d06 /elements/swift/gf-complete.bst
parentfa91b837f4bf46b19678a2c3d6b56f73cdc786a6 (diff)
downloaddefinitions-7aad5150f69da42b84994c353283db5daf8e967f.tar.gz
Add BuildStream converted files
This is made by a conversion made in commit 8f8992a18d55c3abf28d4b6fc8036bd39d3dc1cf of definitions Check there to know what exact versions of YBD and defs2bst was used
Diffstat (limited to 'elements/swift/gf-complete.bst')
-rw-r--r--elements/swift/gf-complete.bst24
1 files changed, 24 insertions, 0 deletions
diff --git a/elements/swift/gf-complete.bst b/elements/swift/gf-complete.bst
new file mode 100644
index 00000000..3efd6d75
--- /dev/null
+++ b/elements/swift/gf-complete.bst
@@ -0,0 +1,24 @@
+kind: autotools
+depends:
+- openstack-common.bst
+sources:
+- kind: git
+ url: upstream:gf-complete
+ track: v2
+ ref: 715443661c00558fe32f004a4be5f93f341b6e59
+config:
+ configure-commands:
+ - ./autogen.sh
+ - |
+ case "%{arch}" in
+ x86_64)
+ SSE=
+ ;;
+ *)
+ # Disable SSE4 for any architecture which are not x86_64 bits
+ # see more information about architecture which support SSE in
+ # https://en.wikipedia.org/wiki/SSE4#Supporting_CPUs.
+ SSE=--disable-sse
+ ;;
+ esac
+ ./configure --prefix="%{prefix}" "$SSE"