annoy

Форк
0
/
annoy-dev-1.rockspec 
59 строк · 1.7 Кб
1
-- Copyright (c) 2016 Boris Nagaev
2
--
3
-- Licensed under the Apache License, Version 2.0 (the "License"); you may not
4
-- use this file except in compliance with the License. You may obtain a copy of
5
-- the License at
6
--
7
-- http://www.apache.org/licenses/LICENSE-2.0
8
--
9
-- Unless required by applicable law or agreed to in writing, software
10
-- distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11
-- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12
-- License for the specific language governing permissions and limitations under
13
-- the License.
14

15
package = "annoy"
16
version = "dev-1"
17
source = {
18
    url = "git://github.com/spotify/annoy.git",
19
}
20
description = {
21
    summary = "Approximate Nearest Neighbors Oh Yeah",
22
    homepage = "https://github.com/spotify/annoy",
23
    license = "Apache",
24
    detailed = [[
25
Annoy (Approximate Nearest Neighbors Oh Yeah) is a C++ library with Python
26
Go and Lua bindings to search for points in space that are close to a given
27
query point. It also creates large read-only file-based data structures
28
that are mmapped into memory so that many processes may share the same data.
29
]],
30
}
31
dependencies = {
32
    "lua >= 5.1",
33
}
34
build = {
35
    type = "builtin",
36
    modules = {
37
        ['annoy'] = {
38
            sources = {
39
                "src/annoyluamodule.cc",
40
            },
41
        },
42
    },
43
    platforms = {
44
        unix = {
45
            modules = {
46
                ['annoy'] = {
47
                    libraries = {"stdc++"},
48
                },
49
            },
50
        },
51
        mingw32 = {
52
            modules = {
53
                ['annoy'] = {
54
                    libraries = {"stdc++"},
55
                },
56
            },
57
        },
58
    },
59
}
60

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.